home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / mui / muirexx2.2 / demos / multicolumn.rexx < prev    next >
OS/2 REXX Batch file  |  1996-09-22  |  867b  |  23 lines

  1. /* example of a multicolumn list */
  2.  
  3. MUIA_List_Format =                     0x80423c0a /* V4  isg STRPTR            */
  4.  
  5. MUIV_List_Insert_Bottom = -3
  6.  
  7. address example
  8.  
  9. window TITLE '"Multicolumn List Example"' COMMAND 'quit' PORT example
  10.   group
  11.     list ID ALST TITLE '"\033bcol 1,\033bcol 2,\033bcol 3"' ATTRS MUIA_List_Format '"MIW=25 P=\033c BAR,MIW=50 P=\033c\033b BAR,MIW=25 P=\033c"'
  12.     string COMMAND '"list ID ALST INSERT POS 'MUIV_List_Insert_Bottom' STRING %s"' PORT example
  13.   endgroup
  14.   group
  15.     list ID BLST TITLE '"\033bSingle column list"'
  16.     string COMMAND '"list ID BLST INSERT POS 'MUIV_List_Insert_Bottom' STRING %s"' PORT example
  17.   endgroup
  18. endwindow
  19. list ID ALST INSERT POS MUIV_List_Insert_Bottom STRING '1,2,3'
  20. list ID ALST INSERT POS MUIV_List_Insert_Bottom STRING '4,5,6'
  21. list ID ALST INSERT POS MUIV_List_Insert_Bottom STRING '7,8,9'
  22. exit
  23.